home *** CD-ROM | disk | FTP | other *** search
- package bugbug;
-
- class Rand {
- // $FF: renamed from: I int
- private static final int field_0 = 1664525;
- private static final int ConstantValue = 1013904223;
- private static int Code = System.identityHashCode(new Object()) + (int)System.currentTimeMillis();
-
- public static void seed(int var0) {
- Code = var0;
- }
-
- public static int rand() {
- Code = 1664525 * Code + 1013904223;
- Code /= 10000;
- return Code;
- }
- }
-